home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cobra Utilities for Doom & Doom II
/
Cobra Utilities For Doom & Doom II - Disc 2.iso
/
files
/
program
/
doomtx
/
doomtex.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
DOS Batch File
|
1994-08-26
|
297 b
|
12 lines
@echo off
rem %1 is p or f (patch or flat)
if not exist bin\%1.wad goto usage
if not exist %2.gif goto usage
copy bin\%1.wad temp.wad > nul
dmgraph %1 -s %2.gif -f temp.wad
bin\wad2lmp temp.wad %2.lmp
del temp.wad
goto end
:usage
echo Usage: doomtex [pf] <gifname> (no extensions)
:end